home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / DATABASE / PKV4.ZIP;1 / MAKEFILE.RMK < prev    next >
Encoding:
Text File  |  1993-02-04  |  707 b   |  27 lines

  1. /*
  2. * Filename..: Makefile.rmk           Purpose: For making Packlook.exce
  3. * Created by: Kevin S. Gallagher    Language: Clipper 5.01
  4. * Date......: 02/04/93
  5. *
  6. * CLIPWARN by:Don Caton is a interface to the clipper compiler. If you do not
  7. * have it and can not find it on a BBS, (I got it from GRUMPFISH BBS) simply
  8. * replace it with CLIPPER.
  9. *
  10. */
  11.  
  12. OBJS  = packlook.obj scrolbar.obj misc.obj
  13. CLPS  = clipwarn
  14. FILES = $<
  15. FLAGS = /m /n /w /a /beep /log:pk_err.err
  16.  
  17.  
  18. packlook.exe:   $(OBJS)
  19.         blinker @linkfile
  20.  
  21. .prg.obj:
  22.         $(CLPS) $(FILES) $(FLAG)
  23.  
  24. packlook.obj    : packlook.prg include1.ch
  25. scrolbar.obj    : scrolbar.prg include1.ch
  26. misc.obj        : misc.prg include1.ch
  27.